From: Richard M. Stallman Date: Mon, 22 Mar 1993 06:59:54 +0000 (+0000) Subject: Don't load help-screen at run time if compiled. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96748 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8aa3a1878374c571d2e26647ef41ebee65b011ea;p=emacs.git Don't load help-screen at run time if compiled. --- diff --git a/lisp/help.el b/lisp/help.el index fc0056233a3..68b3f641593 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -23,7 +23,9 @@ ;;; Code: -(require 'help-screen) +;; Get the macro make-help-screen when this is compiled, +;; or run interpreted, but not when the compiled code is loaded. +(eval-when-compile (require 'help-screen)) (defvar help-map (make-sparse-keymap) "Keymap for characters following the Help key.")